home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / __MANDEL / MANDELBR / CMANDELC.H < prev    next >
Text File  |  1992-03-28  |  348b  |  23 lines

  1. //    CMandelCheckPhase.h
  2.  
  3. #pragma once
  4.  
  5. #include "CMandelPhase.h"
  6.  
  7. class CMandelCheckPhase: public CMandelPhase {
  8.  
  9.     public:
  10.     
  11.         void                    IMandelCheckPhase(CMandelDoc *, CMandelPhase *, Rect);
  12.         virtual CMandelPhase *    Perform(void);
  13.     
  14.     protected:
  15.     
  16.         Rect                    itsRect;
  17.         
  18.     private:
  19.     
  20.         Boolean                    CheckRect(TDwell *);
  21.         void                    FillRect(TDwell);
  22. };
  23.